'Declaration Public Overloads Shared Function Map (Of TI,TR)( _ ByVal source As IItemCollection(Of TI), _ ByVal f As Func(Of TI,Integer,TR) _ ) As IItemCollection(Of TR)
public static IItemCollection<TR> Map<TI,TR>( IItemCollection<TI> source, Func<TI,int,TR> f )
Parameters
- source
- The source collection.
- f
- The converter function.
Type Parameters
- TI
- The type of the item in source collection.
- TR
- The type of the item in target collection.